home *** CD-ROM | disk | FTP | other *** search
/ westlife Cardz: Kian / westlife: Kian.iso / pc / lyrics.dxr / 00018.ls < prev    next >
Encoding:
Text File  |  2000-10-23  |  293 b   |  22 lines

  1. on beginSprite
  2.   global ganswered, r, o, m
  3.   ganswered = 0
  4.   r = 5 * random(6)
  5.   o = 5 * random(6)
  6.   m = 5 * random(6)
  7.   check()
  8. end
  9.  
  10. on check
  11.   global r, o, m
  12.   if r = o then
  13.     beginSprite()
  14.   end if
  15.   if r = m then
  16.     beginSprite()
  17.   end if
  18.   if m = o then
  19.     beginSprite()
  20.   end if
  21. end
  22.